home *** CD-ROM | disk | FTP | other *** search
/ Interplay's Learn to Program Basic (Review Copy) / Learn to Program Basic Review Copy (Interplay)(June 23, 1998).ISO / pc / ltpbasic / refxmpl / if02.bas < prev    next >
BASIC Source File  |  1998-04-07  |  167b  |  10 lines

  1. Print "Enter a number greater than"
  2. Print "five for a message."
  3. Input a
  4. If a > 5 Then
  5. Print "Hi There!"
  6. Print "You've entered a number"
  7. Print "Greater than 5!"
  8. EndIf
  9.  
  10.